@joey_needs_sleep I am struggling with the same problem after the iOS 18 update. Is the feature working reliably for you again now?
Adding location to UIBackgroundModes is not needed, is it? Also, allowsBackgroundLocationUpdates doesn't need to be set to true in order to monitor geofences in the background?
I am using CLMonitor.events and haven't found a way to query the minimal horizontalAccuracy for the geofencing to work
Do you also start your CLServiceSession in the background, when the app is relaunched? According to the WWDC session,
you can only start holding one (a CLServiceSession) when your app is in the foreground
https://developer.apple.com/videos/play/wwdc2024/10212?time=522
and also
... CLMonitor.events won’t yield results when it is not in use, unless a session which was started in the foreground, ....
https://developer.apple.com/videos/play/wwdc2024/10212?time=663
Post
Replies
Boosts
Views
Activity
You can force the OneDrive app to download the file first by settings "asCopy" to true: https://developer.apple.com/documentation/uikit/uidocumentpickerviewcontroller/3566731-initforexportingurls
However, this can cause a hang, especially when the file is large and OneDrive doesn't show a progress indicator. I am also on the search for a way to download the file asynchronously and be able to show a progress indicator in my app
I'm a bit confused now. Isn't SVGs the recommended way to export my custom symbols that I created in the SF Symbols app? If not, what other way am I supposed to export my custom symbol?
And if it's not supposed to work, why does the wiggle effect works as expected?
Thanks for the repsonse. I'm glad this issue is now being investigated, and I'm a bit surprised this hasn't been reported by another user before.
Downloaded that example project and ran it on my macOS 14.7 machine: the bullets/numbers do not render - do they on your machine?
@BMS have you filed a bug report and received any response to it? I am hitting the same issue and feel like there shouldn't be a workaround needed. But it seems like Apple really wants us to have only UINavigationController as children for the UITabBarController - the new "tab bar" on iPad also only seems to share the space with the navigation bar of child view controllers - it doesn't work if the Tab bar controller itself is nested in a UINavigationController
I'm not sure if it's regression - the NSTextList never worked in the first place (or, they only work when you manually add the bullets into the text content itself - which user could select and delete). On iOS, the bullets are non-selectable and added automatically, just by setting the ParagraphStyle.
I submitted a feedback report: FB15162186
Sorry for the late response, for some reason I wasn't notified via mail about your response. Here's there information you were asking for:
Code reproducing your issue:
#import "ViewController.h"
@import Contacts;
@import ContactsUI;
@implementation ViewController
CNContactPicker *contactPicker;
-(IBAction)buttonPressed:(id)sender {
contactPicker = [[CNContactPicker alloc] init];
contactPicker.delegate = self;
contactPicker.displayedKeys = @[CNContactPostalAddressesKey];
[contactPicker showRelativeToRect:NSZeroRect ofView:sender preferredEdge:NSRectEdgeMinY];
}
- (void)contactPicker:(CNContactViewController *)picker didSelectContactProperty:(CNContactProperty *)contactProperty {
CNPostalAddressFormatter *formatter = [[CNPostalAddressFormatter alloc] init];
NSString *formattedAddress = [formatter stringFromPostalAddress:contactProperty.value];
NSLog(@"Formatted Address:\n%@", formattedAddress);
@try
{
CNContactFormatter *contactFormatter = [[CNContactFormatter alloc] init];
NSString *formattedContact = [contactFormatter stringFromContact:contactProperty.contact];
NSLog(@"Formatted Contact:\n%@", formattedContact);
}
@catch(id anException)
{
NSLog(@"Exception:\n%@", anException);
}
}
@end
iOS version reproducing your issue:
This is not an iOS issue. It happens in AppKit on macOS Sonoma 14.6.1.
Does the issue also occur when using Xcode 16 beta 2?
I didn't test Xcode 16 Beta 2 but it also happens with the (more recent) Xcode 16.1 Beta
Still happening...
This is not a temporary phenomenon, it still happens. The same thing can be observed in the web UI (https://icloud.developer.apple.com/dashboard/database/teams/TEAMID). Either no results are shown at all when using the "Query records" button, or it errors out:
Same problem here - since months. Also very surprised Apple isn't interested in fixing this.